home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / BTNMFC.PAK / BTNPPG.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  3KB  |  83 lines

  1. // btnppg.cpp : Implementation of the CButtonPropPage property page class.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "button.h"
  15. #include "btnppg.h"
  16.  
  17. #ifdef _DEBUG
  18. #undef THIS_FILE
  19. static char BASED_CODE THIS_FILE[] = __FILE__;
  20. #endif
  21.  
  22.  
  23. IMPLEMENT_DYNCREATE(CButtonPropPage, COlePropertyPage)
  24.  
  25.  
  26. /////////////////////////////////////////////////////////////////////////////
  27. // Message map
  28.  
  29. BEGIN_MESSAGE_MAP(CButtonPropPage, COlePropertyPage)
  30.     //{{AFX_MSG_MAP(CButtonPropPage)
  31.     //}}AFX_MSG_MAP
  32. END_MESSAGE_MAP()
  33.  
  34.  
  35. /////////////////////////////////////////////////////////////////////////////
  36. // Initialize class factory and guid
  37.  
  38. IMPLEMENT_OLECREATE_EX(CButtonPropPage, "BUTTON.ButtonPropPage.1",
  39.     0x4a8c9993, 0x7713, 0x101b, 0xa5, 0xa1, 0x4, 0x2, 0x1c, 0x0, 0x94, 0x2)
  40.  
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CButtonPropPage::CButtonPropPageFactory::UpdateRegistry -
  44. // Adds or removes system registry entries for CButtonPropPage
  45.  
  46. BOOL CButtonPropPage::CButtonPropPageFactory::UpdateRegistry(BOOL bRegister)
  47. {
  48.     if (bRegister)
  49.         return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
  50.             m_clsid, IDS_BUTTON_PPG);
  51.     else
  52.         return AfxOleUnregisterClass(m_clsid, NULL);
  53. }
  54.  
  55.  
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CButtonPropPage::CButtonPropPage - Constructor
  58.  
  59. CButtonPropPage::CButtonPropPage() :
  60.     COlePropertyPage(IDD, IDS_BUTTON_PPG_CAPTION)
  61. {
  62.     //{{AFX_DATA_INIT(CButtonPropPage)
  63.     m_Caption = _T("");
  64.     //}}AFX_DATA_INIT
  65. }
  66.  
  67.  
  68. /////////////////////////////////////////////////////////////////////////////
  69. // CButtonPropPage::DoDataExchange - Moves data between page and properties
  70.  
  71. void CButtonPropPage::DoDataExchange(CDataExchange* pDX)
  72. {
  73.     //{{AFX_DATA_MAP(CButtonPropPage)
  74.     DDP_Text(pDX, IDC_CAPTIONEDIT, m_Caption, _T("Caption") );
  75.     DDX_Text(pDX, IDC_CAPTIONEDIT, m_Caption);
  76.     //}}AFX_DATA_MAP
  77.     DDP_PostProcessing(pDX);
  78. }
  79.  
  80.  
  81. /////////////////////////////////////////////////////////////////////////////
  82. // CButtonPropPage message handlers
  83.